home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
329_01
/
regerror.c
< prev
next >
Wrap
C/C++ Source or Header
|
1988-12-07
|
265b
|
20 lines
/*
** name: regerror.c
** purpose: Look at the code
*/
#include <stdio.h>
#include "regexp.h"
void
regerror(s)
char *s;
{
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
fprintf(stderr, "regexp(3): %s", s);
exit(1);
#endif
/* NOTREACHED */
}